Per contatti: andrearubiola.97@gmail.com
import matplotlib.pyplot as plt
from PIL import Image
import matplotlib.image as mpimg
import numpy as np
# Convertite in scala di grigi
img_1 = Image.open('Image_Editor (2).png').convert('L')
img_2 = Image.open('Image_Editor (1).png').convert('L')
img_3 = Image.open('Image_Editor (3).png').convert('L')
img_4 = Image.open('Image_Editor (4).png').convert('L')
img_5 = Image.open('Image_Editor (5).png').convert('L')
# Latex: per impostare la grafica "come se fosse un vero articolo scientifico"
font = {'size' : 48, 'family':'STIXGeneral'}
axislabelfontsize='x-large'
plt.rc('font', **font)
plt.rcParams['text.usetex'] = True
np.set_printoptions(precision=3,linewidth=200,suppress=False)
#img.save('output_file.jpg')
Image.open('Image_Editor (2).png')#.convert('L')
Image.open('Image_Editor (1).png')#.convert('L')